home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex68.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  235 b   |  19 lines

  1. Program Example68;
  2.  
  3. { Program to demonstrate the Str function. }
  4. Var S : String;
  5.  
  6. Function IntToStr (I : Longint) : String;
  7.  
  8. Var S : String;
  9.  
  10. begin
  11.  Str (I,S);
  12.  IntToStr:=S;
  13. end;
  14.  
  15. begin
  16.   S:='*'+IntToStr(-233)+'*';
  17.   Writeln (S);
  18. end.
  19.